home *** CD-ROM | disk | FTP | other *** search
/ Skunkware 5 / Skunkware 5.iso / src / X11 / xgrabsc / virtual.h < prev    next >
Text File  |  1995-05-09  |  2KB  |  86 lines

  1. /*
  2.  * Name - virtual.h
  3.  *
  4.  * ccs version:    1.3
  5.  *
  6.  * ccsid:    @(#)virtual.h    1.3 - 07/06/92 10:52:59
  7.  * from:     ccs/s.virtual.h
  8.  * date:     06/28/93 09:14:49
  9.  *
  10.  *--- original header:
  11.  *
  12.  * vroot.h -- Virtual Root Window handling header file
  13.  *
  14.  * This header file redefines the X11 macros RootWindow and DefaultRootWindow,
  15.  * making them look for a virtual root window as provided by certain `virtual'
  16.  * window managers like swm and tvtwm. If none is found, the ordinary root
  17.  * window is returned, thus retaining backward compatibility with standard
  18.  * window managers.
  19.  * The function implementing the virtual root lookup remembers the result of
  20.  * its last invocation to avoid overhead in the case of repeated calls
  21.  * on the same display and screen arguments.
  22.  * The lookup code itself is taken from Tom LaStrange's ssetroot program.
  23.  *
  24.  * Most simple root window changing X programs can be converted to using
  25.  * virtual roots by just including
  26.  *
  27.  * #include "vroot.h"
  28.  *
  29.  * after all the X11 header files.  It has been tested on such popular
  30.  * X clients as xphoon, xfroot, xloadimage, and xaqua.
  31.  *
  32.  * Andreas Stolcke (stolcke@ICSI.Berkeley.EDU), 9/7/90
  33.  */
  34.  
  35. static Window
  36. VirtualRootWindow(dpy, screen)
  37. Display *dpy;
  38. {
  39.     static Display *save_dpy = (Display *)0;
  40.     static int save_screen = -1;
  41.     static Window root = (Window)0;
  42.  
  43.     Atom __SWM_VROOT = None;
  44.     int i;
  45.     Window rootReturn, parentReturn, *children;
  46.     unsigned int numChildren;
  47.  
  48.     if ( dpy != save_dpy || screen != save_screen ) {
  49.         root = RootWindow(dpy, screen);
  50.  
  51.         /* go look for a virtual root */
  52.         __SWM_VROOT = XInternAtom(dpy, "__SWM_VROOT", False);
  53.         XQueryTree(dpy, root, &rootReturn, &parentReturn,
  54.                  &children, &numChildren);
  55.         for (i = 0; i < numChildren; i++) {
  56.             Atom actual_type;
  57.             int actual_format;
  58.             long nitems, bytesafter;
  59.             Window *newRoot = (Window *)0;
  60.  
  61.             if (XGetWindowProperty(dpy, children[i], __SWM_VROOT,
  62.                 0, 1, False, XA_WINDOW,
  63.                 &actual_type, &actual_format,
  64.                 &nitems, &bytesafter,
  65.                 (unsigned char **) &newRoot) == Success
  66.                 && newRoot) {
  67.                 root = *newRoot;
  68.                 break;
  69.             }
  70.         }
  71.  
  72.         save_dpy = dpy;
  73.         save_screen = screen;
  74.     }
  75.  
  76.     return root;
  77. }
  78.  
  79. /*********************
  80. #undef DefaultRootWindow
  81. #define DefaultRootWindow(dpy) RootWindow(dpy, DefaultScreen(dpy))
  82.  
  83. #undef RootWindow
  84. #define RootWindow(dpy,screen) VirtualRootWindow(dpy,screen)
  85. **********************/
  86.